home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00081_DirectionSprite.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  5.7 KB  |  208 lines

  1. --
  2. -- DirectionSprite
  3. --
  4.  
  5. property ancestor
  6.  
  7. -- constants:
  8. property dragTopSpriteColor  -- the spriteColor of the dragging sprite - for setup
  9. property dragUnderSpriteColor
  10.  
  11. property dragTopSprite  -- the spriteNumber of the dragging sprite
  12. property dragUnderSprite  -- the sprite that drags under the cursor to find intersecting sprites.
  13. property hiliteSprite  -- the sprite that will do the rollover hiliting
  14.  
  15. property hiliteList  -- a list of hilitable sprites.  They hilite when the dragger is over them.
  16. property void  -- never initialize this.
  17. property baseCastlib
  18. property showDirectionFlag  -- allow visual changes of direction if true
  19.  
  20.  
  21. on new me
  22.   -- set constants:
  23.   set dragTopSpriteColor = 5  -- red
  24.   set dragUnderSpriteColor = 4  -- pink
  25.   
  26.   -- initialize the ancestor:
  27.   set ancestor = new (script "SinglePointPusher")
  28.   
  29.   -- do other initializations:
  30.   setUp (me)
  31.   set showDirectionFlag = TRUE
  32.   
  33.   set hiliteList = []
  34.   return me
  35. end
  36.  
  37.  
  38. on destruct me
  39.   if objectP (ancestor) then destruct (ancestor)
  40.   set ancestor = 0
  41. end
  42.  
  43.  
  44.  
  45. -- don't allow a visual change of direction:
  46.  
  47. on showDirectionOff me
  48.   set showDirectionFlag = FALSe
  49. end
  50.  
  51.  
  52. on move me, spr, direction
  53.   
  54.   if voidP (baseCastLib) then set baseCastLib = the name of castLib the castLibNum of sprite spr
  55.   
  56.   puppetSprite spr, TRUE
  57.   
  58.   if showDirectionFlag then
  59.     case (direction) of 
  60.       #up : set the castLibNum of sprite spr to the number of castLib baseCastLib
  61.       #down:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "2")
  62.       #right: set the castLibNum of sprite spr to the number of castLib (baseCastLib & "3")
  63.       #left:  set the castLibNum of sprite spr to the number of castLib (baseCastLib & "4")
  64.       otherwise return
  65.     end case
  66.   end if
  67.   
  68.   
  69.   if dragTopSprite then 
  70.     set the memberNum of sprite dragTopSprite to the memberNum of sprite spr
  71.     set the castLibNum of sprite dragTopSprite to the castLibNum of sprite spr
  72.     set the loc of sprite dragTopSprite to the loc of sprite spr
  73.     updateStage
  74.   end if
  75.   
  76.   moveOffScreen (me, spr)
  77.   
  78.   if dragUnderSprite then
  79.     puppetSprite dragUnderSprite, TRUE
  80.     set the member of sprite dragUnderSprite to member "underCursor"
  81.     set the loc of sprite dragUnderSprite to the loc of sprite dragTopSprite
  82.   end if
  83.   
  84.   moveDirection (me, spr, direction) -- do the actual motion.
  85.   
  86.   if dragTopSprite then set tmpLoc = the loc of sprite dragTopSprite
  87.   
  88.   -- this was to return the location of the drag under sprite, currently we return the sprite number itself.
  89.   --  if dragUnderSprite then set endLoc = the loc of sprite dragUnderSprite
  90.   --  else set endLoc = void
  91.   
  92.   if dragTopSprite then moveOffScreen (me, dragTopSprite)
  93.   
  94.   set the loc of sprite spr to tmpLoc  -- move original spr back onscreen.
  95.   updateStage
  96.   
  97.   if dragUnderSprite then return dragUnderSprite
  98.   else return void
  99. end
  100.  
  101.  
  102. -- drag the passed sprite
  103.  
  104. on moveDirection me, spr, direction
  105.   
  106.   set startCast = the name of castLib the castLibNum of sprite spr
  107.   set betweenCast = startCast && "betweens"
  108.   set moveNum = 1
  109.   
  110.   repeat while the mouseDown
  111.     case (direction) of 
  112.       #up :   set sprOffSet = point (0,-1)
  113.       #down:  set sprOffSet = point (0,1)
  114.       #right: set sprOffSet = point (1,0)
  115.       #left:  set sprOffSet = point (-1,0)
  116.       otherwise return
  117.     end case
  118.     
  119.     set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite + sprOffSet
  120.     updateStage
  121.     
  122.     if  checkSpriteIntersect (me, spr) then
  123.       -- if we colide with a bad target, then don't allow the move
  124.       set the loc of sprite dragUnderSprite = the loc of sprite dragUnderSprite - sprOffSet
  125.       -- beep
  126.       exit repeat
  127.     else
  128.       -- otherwise move the main sprite to match the new location of the test sprite:
  129.       set the loc of sprite dragTopSprite = the loc of sprite dragTopSprite + sprOffSet
  130.       if (moveNum mod 3) = 0 then
  131.         if the name of castLib the castLibNum of sprite dragTopSprite = startCast then 
  132.           set the castLibNum of sprite dragTopSprite to the number of castLib betweenCast
  133.         else set the castLibNum of sprite dragTopSprite to the number of castLib startCast
  134.       end if
  135.       set moveNum = moveNum + 1
  136.     end if
  137.     updateStage
  138.     
  139.     --JCODE
  140.     --slow down motion
  141.     endTimer =   the timer + 1
  142.     
  143.     repeat while the timer < endTimer
  144.       nothing
  145.     end repeat
  146.     
  147.     --end slow down
  148.     
  149.   end repeat
  150. end
  151.  
  152.  
  153. --finally ditch the dragUnderSprite:
  154.  
  155. on hideUnderSprite me
  156.   if not dragUnderSprite then return
  157.   moveOffScreen (me, dragUnderSprite)
  158. end
  159.  
  160.  
  161. -- check the ink of the sprites under the cursor:
  162.  
  163. on checkSpriteIntersect me, activeSpr
  164.   if not dragUnderSprite then return
  165.   if not listP (hiliteList) then return
  166.   set c = count (hiliteList) 
  167.   repeat with i = c down to 1
  168.     set spr = getAt (hiliteList, i)
  169.     set currName = the name of member the memberNum of sprite spr of castLib the castLibNum of sprite spr
  170.     if sprite dragUnderSprite intersects spr and currName = "boundingRect" then
  171.       if not checkMatch (me, activeSpr, dragUnderSprite) then
  172.         return 1
  173.         exit repeat
  174.       end if
  175.     end if
  176.   end repeat
  177.   return 0
  178. end
  179.  
  180.  
  181.  
  182. on setUp me, hilites
  183.   set dragUnderSprite = 0
  184.   set dragTopSprite = 0
  185.   
  186.   repeat with i = 1 to numSprites (me)
  187.     if the scoreColor of sprite i = dragTopSpriteColor then 
  188.       set dragTopSprite = i
  189.       exit repeat
  190.     end if
  191.   end repeat
  192.   
  193.   repeat with i = 1 to numSprites (me)
  194.     if the scoreColor of sprite i = dragUnderSpriteColor then
  195.       if hiliteSprite then set dragUnderSprite = i
  196.       else set hiliteSprite = i
  197.     end if
  198.   end repeat
  199.   
  200.   -- makeField (me, dragTopField, dragTopSprite)
  201. end
  202.  
  203.  
  204. -- hilites must be a list of sprite numbers.
  205.  
  206. on initHilitePool me, hilites
  207.   if listP (hilites) then set hiliteList = hilites
  208. end